home *** CD-ROM | disk | FTP | other *** search
- #include <exec/types.h>
- #include <exec/ports.h>
-
- #include "/defs.h"
- #include "/utility.h"
-
- struct fPrefObject { LONG Delay; };
-
- VOID defaults( struct bMessage *Msg )
- {
- static struct fPrefObject fPO = { 15L };
-
- Msg->bm_Mod = getTopScreenMode();
- Msg->bm_Dep = getTopScreenDepth();
-
- Msg->bm_Info = "Fade Module";
- Msg->bm_Data = ( UBYTE * )( &fPO );
- }
-